PHPSpreadsheet – FileFormat

PHPSpreadsheet is an open-source library that contains a set of classes to enable you to interact with and utilize several spreadsheet file formats of Microsoft Excel and LibreOffice Calc. Moreover, it supports spreadsheets that include one or more worksheets, containing cells to hold data of various types, such as, numbers, formula, image, etc.

Simple Excel-PHP – FileFormat

Simple Excel-PHP is a lightweight open-source PHP library with a simplistic approach to read, write, parse, & convert Microsoft Excel file formats. Developers can use this spreadsheet library to easily convert between popular file formats like XML CSV, TSV HTML & JSON formats. It provides support for several important features such as parsing HTML table, …

PHP Multi Page Form

Sessions in PHP are used to retain values of a web page and can transfer them from one page to another. Using this property, we can create a multi page form in PHP.

PHP Login Form with Sessions

Session variables are used to store individual client’s information on web server for later use, as web server does not know which client’s request to be respond because, HTTP address does not maintained state.

This tutorial enables you to create sessions in PHP via Login form and web server respond according to his/her request.

PHP: Redirect To URL After Form Submission

PHP is a server side scripting language and it also allows redirecting to another page, this blog post explains you how it can be done using PHP after form submission.

We have created an HTML form with four fields and a submit button, user have to fill all fields and click on submit button, as he clicks the button PHP scripts will executes.

Form Submission Using Ajax, PHP and Javascript

Our earlier blog post already explained about form submission without page refresh, but it was done by using  ajax, PHP and jQuery.

Now you will learn same functionality using ajax, PHP and Javascript through this blog post . Just follow our post or download it to use.

Submit Form Using Ajax, PHP and jQuery

AJAX (Asynchronous JavaScript and XML) is the art of exchanging data with a server, and updating parts of a web page – without reloading the whole page.

we have already post a blog which explains about submitting form without page refresh, but it was done by using PHP and jQuery. Now we will show how you can do the same with ajax and PHP.

Form Validation Using PHP

Validation is very important aspects in data submission.

We have already explain about form validation using javascript and jQuery, but this time we will show you how to validate your form using PHP.